summaryrefslogtreecommitdiff
path: root/src/pages/history/[date].astro
blob: 0bd1e40578e40cb21d1960f01347ed289ec1d211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
import { Geshem } from '../../components/Geshem';
import '../../styles/global.css';
import '../../styles/geshem.css';

export const prerender = false;

const { date } = Astro.params;
---

<html lang="en">
	<head>
		<meta charset="utf-8" />
		<link rel="icon" type="image/png" href="/favicon.png" />
		<meta name="viewport" content="width=device-width" />
		<meta name="generator" content={Astro.generator} />
		<title>Geshem - Rain Radar History</title>
		<meta name="description" content="Israel Rain Radar History" />
	</head>
	<body>
		<Geshem client:load date={date} />
	</body>
</html>